home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run / EnigmA AMIGA RUN 16 (1997)(G.R. Edizioni)(IT)[!][issue 1997-03][AmyResource Special Edition].iso / amyresource_uno / installa < prev    next >
Text File  |  1997-02-26  |  2KB  |  108 lines

  1. ; Script "Installa"
  2. ;
  3. ; © 1996, Luca Danelon per Interactive
  4. ;
  5. ; Versione 1.4
  6. ;
  7. ; Little History:
  8. ; 09/10/96 - Risolto un piccolo bug nell'assegnazione di MUI
  9. ; 27/10/96 - Aggiunte alcune directory di sistema
  10.  
  11. Assign AR: exists >NIL:
  12. if NOT WARN
  13.   skip fine
  14. Endif
  15.  
  16. C:Assign AR: :AmyResource_Zero
  17. Assign C: AR:C add
  18. Assign LIBS: AR:Libs add
  19. Assign LOCALE: AR:Locale add
  20. Assign LIBS: AR:Classes add
  21. Assign FONTS: AR:Fonts add
  22. Assign LIBS: AR:Classes add
  23. Assign S: AR:S add
  24. Assign ENV: AR:Prefs/Env-Archive add
  25.  
  26. C:Assign AR1: :AmyResource_Uno
  27. Assign C: AR1:C add
  28. Assign LIBS: AR1:Libs add
  29. Assign LOCALE: AR1:Locale add
  30. Assign LIBS: AR1:Classes add
  31. Assign FONTS: AR1:Fonts add
  32. Assign LIBS: AR1:Classes add
  33. Assign S: AR1:S add
  34. Assign ENV: AR1:Prefs/Env-Archive add
  35.  
  36. ;ImageVision
  37. ASSIGN IV: exists >NIL:
  38. If warn
  39.   Assign IV: AR:Demo/Commerciali/IMAGEVISION
  40.   Assign >NIL: IV_CD: IV: PATH
  41.   Assign IV_Temp: IV:Temp
  42. Endif
  43.  
  44. ;DigitalUniverse
  45. ASSIGN DU: exists >NIL:
  46. if warn
  47.   ASSIGN DU: AR:Demo/Commerciali/DigitalUniverseDemo
  48. endif
  49.  
  50. ;MagicCX
  51. ASSIGN MAGICCX: exists >NIL:
  52. if warn
  53.   ASSIGN MAGICCX: AR:Software/WB_Utilities/MagicCX
  54. endif
  55.  
  56. ;VWorlds
  57. ASSIGN VWORLDS: exists >NIL:
  58. if warn
  59.   ASSIGN VWORLDS: AR:Software/Altro/VWorlds21
  60. endif
  61.  
  62. ;ArtStudioDemo
  63. assign ArtStudio: exists >NIL:
  64. if warn
  65.   assign ArtStudio: AR1:Demo/Commerciali/ArtStudio
  66. Endif
  67.  
  68. ;Plotter3D
  69. assign Plotter3D: exists >NIL:
  70. if warn
  71.   assign Plotter3D: AR1:Software/Scientifici/Plotter3D
  72. Endif
  73.  
  74. ;ProgED
  75. assign ProgED: exists >NIL:
  76. if warn
  77.   Assign ProgED: AR1:Software/Editor/ProgED
  78.   Path ProgED: ADD
  79. endif
  80.  
  81. ;FontMachine2
  82. assign FONTS: AR1:Demo/Commerciali/FontMachine2_Demo/Fonts add
  83. assign LIBS: AR1:Demo/Commerciali/FontMachine2_Demo/Libs add
  84.  
  85. Assign MUI: exists >NIL:
  86. If warn
  87.   ASSIGN MUI: AR:Tools/MUI
  88.   ASSIGN LIBS: AR:Tools/MUI/Libs add
  89.   if exists MUI:Docs
  90.     if exists HELP:dummy ; do not remove
  91.     endif                ; this entry!
  92.     assign add HELP: MUI:Docs
  93.   endif
  94. Else
  95.   Version LIBS:muimaster.library >NIL: 17
  96.   If warn
  97.     ASSIGN MUI: AR:Tools/MUI
  98.     ASSIGN LIBS: AR:Tools/MUI/Libs add
  99.     if exists MUI:Docs
  100.       if exists HELP:dummy ; do not remove
  101.       endif                ; this entry!
  102.       assign add HELP: MUI:Docs
  103.     endif
  104.   EndIf  
  105. EndIf
  106.  
  107. lab fine
  108.